home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 14646 / 14646.xpi / chrome / content / options.xul next >
Extensible Markup Language  |  2009-12-26  |  2KB  |  52 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  4.  
  5. <!DOCTYPE dialog [
  6.     <!ENTITY % sbkentity SYSTEM "chrome://simplebosskey/locale/options.dtd">
  7.     %sbkentity;
  8. ]>
  9.  
  10. <dialog id="sbkOption"
  11.        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  12.        xmlns:html="http://www.w3.org/1999/xhtml"
  13.        title="&options.title;"
  14.        buttons="accept">
  15.     
  16.    <tabbox flex="1">
  17.       <tabs>
  18.           <tab label="&options.tabHelp;" />
  19.       </tabs>
  20.  
  21.       <tabpanels flex="1">
  22.          <tabpanel id="sbkHelpTab" flex="1">
  23.             <vbox flex="1">
  24.  
  25.                <vbox>
  26.                   <label style="font-size:1.2em; font-weight:bold">&options.tips;</label>
  27.                   <description width="300" style="margin:10px">&options.tip1;</description>
  28.                   <description width="300" style="margin:10px">&options.tip2;</description>
  29.                </vbox>
  30.  
  31.                <html:br />
  32.                <html:hr />
  33.  
  34.                <vbox flex="1" width="300" align="center">
  35.                   <hbox style="font-size:0.8em">
  36.                      <label class="text-link" href="http://tiptt.blogspot.com/2009/10/firefox-extension-simple-boss-key.html">&options.help;</label>
  37.                      <label>|</label>
  38.                      <label class="text-link" href="http://tiptt.blogspot.com/2009/12/support.html">&options.support;</label>
  39.                      <label>|</label>
  40.                      <label class="text-link" href="http://tiptt.blogspot.com/search/label/Firefox-Extension">&options.more;</label>
  41.                   </hbox>
  42.                </vbox>
  43.             </vbox>
  44.          </tabpanel>
  45.  
  46.       </tabpanels>
  47.    </tabbox>
  48.  
  49. </dialog>
  50.  
  51.  
  52.